All Questions
3,856 questions
0votes
0answers
41views
Not able to navigate to submenus in Angular when the submenus are generating upon clicking of parent menu
My Application is built in Angular, I came to a scenario where I am not able to navigate back to sub-menus. So the module is built like this. We have list of menus which are defined in html template. &...
0votes
3answers
55views
New @for Directive in Angular – Dynamic Array Issue
I'm creating a dynamic FormArray within a FormGroup. The only change I've made is switching from *ngFor to the new @for. The issue occurs when I try to remove an element from the FormArray. Previously,...
1vote
1answer
65views
How to create Angular mutually exclusive checkboxes and filter
I have 4 checkboxes that filter based on its name/identifierValue. When the page loads ALL should be selected. If I click any other box 'ALL' should deselect and I then filter based on the selection....
1vote
1answer
46views
How to properly filter material table using angular using checkbox
I have a set of data in which is filtering by checkbox. However it only works one time. For example. I have 2 distinct company If I check company it filters and shows two rows and I uncheck it shows ...
3votes
0answers
19views
What is the purpose of canLoad in Angular if we already have lazy loading and canActivate? [duplicate]
I have two modules in my Angular application, and I am using lazy loading to prevent a module from being loaded until the user navigates to it. Additionally, I am using canActivate in my route guards ...
0votes
1answer
32views
Kendo grid column hide
I want to Hide column from kendo grid when report type is selected NTR. How can i hide { field: "SrNo", title: "Grounds of Suspicion", template: ({ SrNo }) => <a style='color:...
0votes
0answers
19views
Angular v9 subresource-integrity flag not adding integrity
I am working on an Angular 9 application and attempting to use the subresource integrity flag when building with ng build but I am not seeing any integrity properties added in the generated index.html ...
1vote
1answer
40views
Issue with angular material
I have been updating the angular version in my app, when I updated from Angular 17 to 18 I got an issue with the angular material in the theme.scss file when I run ng serve. Module build failed (from ....
0votes
1answer
67views
Update angular 17
i updated my Angular application on version 17, before updating i got rid of legacy components, i am also using angular material. But after updating the angular material on 17, i have problem that ...
2votes
1answer
68views
How can I automatically format dates according to the OS's locale in Angular without manually setting LOCALE_ID?
I am building an Angular application and want to format dates based on the user's operating system locale (or browser's default language) without manually setting the LOCALE_ID for each case. While ...
2votes
2answers
105views
Angular JS Angular 18 hybrid routing
I have an angular js/angular 18 hybrid application which is working, but what I am trying to do is migrate the routes of the customer users like this: .state('customer', { url: "/...
0votes
1answer
43views
Why angular doesn't throw a selector collision error in this scenario?
Inspecting some code from my project I've encountered a strange scenario in which I think angular should throw an error at build time. In my angular app I have this index.html file with all the ...
0votes
1answer
84views
UserUnAuthenticatedException: User needs to be authenticated to call this API; Angular 19 aws-amplify v6
Hi I am encountering the issue in Angular and aws-amplify v6 UserUnAuthenticatedException: User needs to be authenticated to call this API I have configured the Amplify in my main.ts Amplify....
1vote
2answers
292views
Component TasksComponent is standalone, and cannot be declared in an NgModule
X [ERROR] TS-996008: Component TasksComponent is standalone, and cannot be declared in an NgModule. Did you mean to import it instead? [plugin angular-compiler] src/app/app.module.ts:13:4: 13 │ ...
-1votes
1answer
91views
How to Securely Apply a Blur Effect to Images in an Angular App to Prevent User Manipulation? [closed]
I'm working on an Angular application where the images displayed contain sensitive information, and I want to apply a blur effect to these images. However, I don't want users to be able to inspect the ...